home *** CD-ROM | disk | FTP | other *** search
/ develop, the CD; issue 1 / Apple_Develop_1989.bin / Offscreen / Sample.spotlight / Sample.make < prev    next >
Text File  |  1989-06-19  |  2KB  |  67 lines

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple Sample Application
  5. #
  6. #    Sample
  7. #
  8. #    [P]Sample.make    -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    
  14. #                1.00                08/88
  15. #                1.01                11/88
  16. #                1.02                04/89    MPW 3.1
  17. #
  18. #    Components:
  19. #                Sample.p            April 1, 1989
  20. #                Sample.c            April 1, 1989
  21. #                Sample.a            April 1, 1989
  22. #                Sample.inc1.a        April 1, 1989
  23. #                SampleMisc.a        April 1, 1989
  24. #                Sample.r            April 1, 1989
  25. #                Sample.h            April 1, 1989
  26. #                [P]Sample.make        April 1, 1989
  27. #                [C]Sample.make        April 1, 1989
  28. #                [A]Sample.make        April 1, 1989
  29. #
  30. #    Sample is an example application that demonstrates how to
  31. #    initialize the commonly used toolbox managers, operate 
  32. #    successfully under MultiFinder, handle desk accessories, 
  33. #    and create, grow, and zoom windows.
  34. #
  35. #    It does not by any means demonstrate all the techniques 
  36. #    you need for a large application. In particular, Sample 
  37. #    does not cover exception handling, multiple windows/documents, 
  38. #    sophisticated memory management, printing, or undo. All of 
  39. #    these are vital parts of a normal full-sized application.
  40. #
  41. #    This application is an example of the form of a Macintosh 
  42. #    application; it is NOT a template. It is NOT intended to be 
  43. #    used as a foundation for the next world-class, best-selling, 
  44. #    600K application. A stick figure drawing of the human body may 
  45. #    be a good example of the form for a painting, but that does not 
  46. #    mean it should be used as the basis for the next Mona Lisa.
  47. #
  48. #    We recommend that you review this program or TESample before 
  49. #    beginning a new application.
  50. #
  51. #     You can define {SymOptions} as "-sym on" or "-sym off" for use with SADE
  52. POptions = {SymOptions}
  53.  
  54. PObjs        = Sample.p.o [partial]
  55.         "{Libraries}"Runtime.o [partial]
  56.         "{Libraries}"Interface.o [partial]
  57.         "{PLibraries}"PasLib.o
  58.  
  59. Sample        [f][f] {PObjs} Sample.make
  60.         Link -o {Targ} {PObjs} {SymOptions}
  61.         SetFile {Targ} -t APPL -c 'MOOS' -a B
  62.  
  63. Sample        [f][f] Sample.r Sample.h Sample.make
  64.         Rez -rd -o {Targ} Sample.r -append
  65.  
  66. Sample.p.o    [f][f] Sample.make
  67.